home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 367_01 / futi14as.zoo / tail.c < prev    next >
C/C++ Source or Header  |  1992-02-22  |  26KB  |  1,027 lines

  1. /* tail -- output last part of file(s)
  2.    Copyright (C) 1989, 1990 Free Software Foundation, Inc.
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* MS-DOS port (c) 1990 by Thorsten Ohl, ohl@gnu.ai.mit.edu
  19.    This port is also distributed under the terms of the
  20.    GNU General Public License as published by the
  21.    Free Software Foundation.
  22.  
  23.    Please note that this file is not identical to the
  24.    original GNU release, you should have received this
  25.    code as patch to the official release.  */
  26.  
  27. #ifdef MSDOS
  28. static char RCS_Id[] =
  29.   "$Header: e:/gnu/fileutil/RCS/tail.c 1.4.0.4 90/09/19 12:09:20 tho Exp $";
  30.  
  31. static char Program_Id[] = "tail";
  32. static char RCS_Revision[] = "$Revision: 1.4.0.4 $";
  33.  
  34. #define VERSION \
  35.   "GNU %s, Version %.*s (compiled %s %s for MS-DOS)\n", Program_Id, \
  36.   (sizeof RCS_Revision - 14), (RCS_Revision + 11), __DATE__, __TIME__
  37.  
  38. #define COPYING \
  39.   "This is free software, distributed under the terms of the\n" \
  40.   "GNU General Public License.  For details, see the file COPYING.\n"
  41. #endif /* MSDOS */
  42.  
  43. /* Can display any amount of data, unlike the Unix version, which uses
  44.    a fixed size buffer and therefore can only deliver a limited number
  45.    of lines.
  46.  
  47.    Usage: tail [-b [+]#] [-c [+]#] [-n [+]#] [-fqv] [+blocks [+]#]
  48.           [+bytes [+]#] [+lines [+]#] [+follow] [+quiet] [+silent]
  49.           [+verbose] [file...]
  50.  
  51.           tail [+/-#bcflqv] [file...]
  52.  
  53.    Options:
  54.    -b, +blocks #    Tail by # 512-byte blocks.
  55.    -c, +bytes #        Tail by # bytes.
  56.    -f, +follow        Loop forever trying to read more characters at the
  57.             end of the file, on the assumption that the file
  58.             is growing.  Ignored if reading from a pipe.
  59.             Cannot be used if more than one file is given.
  60.    -l, -n, +lines #    Tail by # lines.
  61.    -q, +quiet, +silent    Never print filename headers.
  62.    -v, +verbose        Always print filename headers.
  63.  
  64.    If a number (#) starts with a `+', begin printing with the #th item
  65.    from the start of each file, instead of from the end.
  66.  
  67.    Reads from standard input if no files are given or when a filename of
  68.    ``-'' is encountered.
  69.    By default, filename headers are printed only more than one file
  70.    is given.
  71.    By default, prints the last 10 lines (tail -n 10).
  72.  
  73.    Started by Paul Rubin <phr@ai.mit.edu>
  74.    Finished by David MacKenzie <djm@ai.mit.edu> */
  75.  
  76. #include <stdio.h>
  77. #include <getopt.h>
  78. #include <ctype.h>
  79. #include <sys/types.h>
  80. #include "system.h"
  81.  
  82. #ifdef STDC_HEADERS
  83. #include <errno.h>
  84. #include <stdlib.h>
  85. #define ISDIGIT(c) (isdigit ((unsigned char) (c)))
  86. #else
  87. #define ISDIGIT(c) (isascii (c) && isdigit (c))
  88. char *malloc ();
  89. void free ();
  90.  
  91. extern int errno;
  92. #endif
  93.  
  94. #ifndef _POSIX_SOURCE
  95. long lseek();
  96. #endif
  97.  
  98. /* Number of items to tail. */
  99. #define DEFAULT_NUMBER 10
  100.  
  101. /* The number of bytes in a block (-b option). */
  102. #define BLOCKSIZE 512
  103.  
  104. /* Size of atomic reads. */
  105. #define BUFSIZE (BLOCKSIZE * 8)
  106.  
  107. /* Masks for the operation mode.  If neither BYTES nor BLOCKS is set,
  108.    tail operates by lines. */
  109. #define BYTES 1            /* Tail by characters. */
  110. #define BLOCKS 2        /* Tail by blocks. */
  111. #define FOREVER 4        /* Read from end of file forever. */
  112. #define START 8            /* Count from start of file instead of end. */
  113. #define HEADERS 16        /* Print filename headers. */
  114. #ifdef MSDOS
  115. #define BINARY 32        /* Suppress crlf translation. */
  116. #endif
  117.  
  118. /* When to print the filename banners. */
  119. enum header_mode
  120. {
  121.   multiple_files, always, never
  122. };
  123.  
  124. #ifdef MSDOS
  125.  
  126. #include <io.h>
  127. #include <string.h>
  128.  
  129. extern  void main (int, char **);
  130. extern  void write_header (char *);
  131. extern  int tail (char *, int, int, long);
  132. extern  int tail_file (char *, int, long);
  133. extern  int tail_bytes (char *, int, int, long);
  134. extern  int tail_lines (char *, int, int, long);
  135. extern  int file_lines (char *, int, long, long);
  136. extern  int pipe_lines (char *, int, long);
  137. extern  int pipe_bytes (char *, int, long);
  138. extern  int start_bytes (char *, int, long);
  139. extern  int start_lines (char *, int, long);
  140. extern  void dump_remainder (char *, int, int);
  141. extern  void xwrite (int, char *, int);
  142. extern  char *xmalloc (int);
  143. extern  long atou (char *);
  144. extern  char *basename (char *);
  145. extern  void error (int status, int errnum, char *message, ...);
  146. extern  void usage (void);
  147.  
  148. #else  /* not MSDOS */
  149.  
  150. char *xmalloc ();
  151. int file_lines ();
  152. int pipe_bytes ();
  153. int pipe_lines ();
  154. int start_bytes ();
  155. int start_lines ();
  156. int tail ();
  157. int tail_bytes ();
  158. int tail_file ();
  159. int tail_lines ();
  160. long atou();
  161. void dump_remainder ();
  162. void error ();
  163. void usage ();
  164. void write_header ();
  165. void xwrite ();
  166.  
  167. #endif /* not MSDOS */
  168.  
  169. /* The name this program was run with. */
  170. char *program_name;
  171.  
  172. struct option long_options[] =
  173. {
  174. #ifdef MSDOS
  175.   {"binary", 1, NULL, 'B'},
  176.   {"copying", 0, NULL, 30},
  177.   {"version", 0, NULL, 31},
  178. #endif
  179.   {"blocks", 1, NULL, 'b'},
  180.   {"bytes", 1, NULL, 'c'},
  181.   {"follow", 0, NULL, 'f'},
  182.   {"lines", 1, NULL, 'n'},
  183.   {"quiet", 0, NULL, 'q'},
  184.   {"silent", 0, NULL, 'q'},
  185.   {"verbose", 0, NULL, 'v'},
  186.   {NULL, 0, NULL, 0}
  187. };
  188.  
  189. void
  190. main (argc, argv)
  191.      int argc;
  192.      char **argv;
  193. {
  194.   enum header_mode header_mode = multiple_files;
  195.   int errors = 0;        /* Exit status. */
  196.   int mode = 0;            /* Flags. */
  197.   /* In START mode, the number of items to skip before printing; otherwise,
  198.      the number of items at the end of the file to print.  Initially, -1
  199.      means the value has not been set. */
  200.   long number = -1;
  201.   int c;            /* Option character. */
  202.   int longind;            /* Index in `long_options' of option found. */
  203.  
  204.   program_name = argv[0];
  205.  
  206.   if (argc > 1
  207.       && ((argv[1][0] == '-' && ISDIGIT (argv[1][1]))
  208.       || (argv[1][0] == '+' && (ISDIGIT (argv[1][1]) || argv[1][1] == 0))))
  209.     {
  210.       /* Old option syntax: a dash or plus, one or more digits (zero digits
  211.      are acceptable with a plus), and one or more option letters. */
  212.       if (argv[1][0] == '+')
  213.     mode |= START;
  214.       if (argv[1][1] != 0)
  215.     {
  216.       for (number = 0, ++argv[1]; ISDIGIT (*argv[1]); ++argv[1])
  217.         number = number * 10 + *argv[1] - '0';
  218.       /* Parse any appended option letters. */
  219.       while (*argv[1])
  220.         {
  221.           switch (*argv[1])
  222.         {
  223.         case 'b':
  224.           mode |= BLOCKS;
  225.           mode &= ~BYTES;
  226.           break;
  227.  
  228.         case 'c':
  229.           mode |= BYTES;
  230.           mode &= ~BLOCKS;
  231.           break;
  232.  
  233.         case 'f':
  234.           mode |= FOREVER;
  235.           break;
  236.  
  237.         case 'l':
  238.           mode &= ~(BYTES | BLOCKS);
  239.           break;
  240.  
  241.         case 'q':
  242.           header_mode = never;
  243.           break;
  244.  
  245.         case 'v':
  246.           header_mode = always;
  247.           break;
  248.  
  249.         default:
  250.           error (0, 0, "unrecognized option `-%c'", *argv[1]);
  251.           usage ();
  252.         }
  253.           ++argv[1];
  254.         }
  255.     }
  256.       /* Make the options we just parsed invisible to getopt. */
  257.       argv[1] = argv[0];
  258.       argv++;
  259.       argc--;
  260.     }
  261.  
  262. #ifdef MSDOS
  263.   while ((c = getopt_long (argc, argv, "b:c:n:fqvB", long_options, &longind))
  264. #else
  265.   while ((c = getopt_long (argc, argv, "b:c:n:fqv", long_options, &longind))
  266. #endif
  267.      != EOF)
  268.     {
  269.       switch (c)
  270.     {
  271. #ifdef MSDOS
  272.     case 30:
  273.       fprintf (stderr, COPYING);
  274.       exit (0);
  275.       break;
  276.  
  277.     case 31:
  278.       fprintf (stderr, VERSION);
  279.       exit (0);
  280.       break;
  281.  
  282.     case 'B':
  283.       mode |= BINARY;
  284.       break;
  285. #endif
  286.  
  287.     case 'b':
  288.       mode |= BLOCKS;
  289.       mode &= ~BYTES;
  290.       if (*optarg == '+')
  291.         {
  292.           mode |= START;
  293.           ++optarg;
  294.         }
  295.       else if (*optarg == '-')
  296.         ++optarg;
  297.       number = atou (optarg);
  298.       if (number == -1)
  299.         error (1, 0, "invalid number `%s'",